圖片縮放效果 補


Posted by mijouhsieh on 2023-07-19

圖片定位不動,滑鼠hover過去放大

圖片定位不動,滑鼠滾輪在圖片上zoom in zoom out

頁面滾輪往下滑,圖片變大

範例


圖片定位不動,滑鼠hover過去放大

<div class="img-container">
    <img src="https://xxx.jpg" />
</div>
.img-container { //照片容器定寬高
    width:200px; height:200px;
    overflow:hidden;
}
.img-container img {  //照片scale 大小、轉場設定
    transform:scale(1,1);
    transition: all 1s ease-out;
}
.img-container img:hover { //照片hover時的scale 大小
transform:scale(1.2,1.2);
}

頁面滾輪往下滑,圖片變大


#img-resize







Related Posts

在html檔中呈現編輯器JS standard style空格

在html檔中呈現編輯器JS standard style空格

用 tkinter 實現選擇路徑打開 excel ,並用 tree view 顯示

用 tkinter 實現選擇路徑打開 excel ,並用 tree view 顯示

Week3 - 挑戰題:貪婪的小偷 Part2

Week3 - 挑戰題:貪婪的小偷 Part2


Comments